Platform Explorer / Nuxeo Platform 2023.9

Component org.nuxeo.template.service.jxlsContrib

Requirements

Resolution Order

878
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<component
  name="org.nuxeo.template.service.jxlsContrib">

  <require>org.nuxeo.template.service.defaultContrib</require>

    <extension target="org.nuxeo.template.service.TemplateProcessorComponent" point="processor">

    <documentation>JXLS template processor  @author Thierry Delprat (td@nuxeo.com)</documentation>

    <templateProcessor name="JXLSProcessor" label="JXLS Processor" default="false" class="org.nuxeo.template.processors.jxls.JXLSTemplateProcessor">
      <supportedMimeType>application/vnd.ms-excel</supportedMimeType>
      <supportedExtension>xls</supportedExtension>
    </templateProcessor>

  </extension>

  <extension target="org.nuxeo.runtime.ConfigurationService" point="configuration">
    <documentation>
      Property to activate use of the old JXLS 1 for template rendering instead of JXLS 2.
    </documentation>
    <property name="org.nuxeo.template.rendering.jxls1">false</property>
  </extension>

</component>